home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-02-23 | 711 b | 28 lines |
- ################ Beginning of makefile.hdr ################
- # Stuff that goes at the beginning of all the makefiles, but is not
- # configuration parameters, should be in this file. It is included
- # after the configuration file, and before makefile.src.
-
- DIRS =
- PGMS =
-
- SHELL = /bin/sh
-
- COMPILEc = $(CC) -D$(ORIG) -D$(BITORDER) $(CFLAGS) \
- $(CPPFLAGS) $(TARGET_ARCH) $(FASTCOPY) $(FLOAT) -c
- LINKc = $(CC) -D$(ORIG) -D$(BITORDER) $(CFLAGS) \
- $(CPPFLAGS) $(FLOAT) $(TARGET_ARCH) $(FASTCOPY) -o
- LIBRARIES = $(LDFLAGS) $(LIBRARY) $(OTHERLIBS)
-
- .SUFFIXES: .out
-
- .c.o:
- $(COMPILEc) $<
-
- .c.out:
- $(LINKc) $* $< $(LIBRARIES)
- strip $*
- mv $* $(DESTDIR)
- @touch $@
- ################ End of makefile.hdr ################
-